a:focus {
    outline: medium none;
}
.post-text, .pre-text{
    margin:10px 0; 
}
.carousel {
  position: relative;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1;
/*  min-height: 200px;
*/}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
/*  min-height: 200px;
*/}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
     -moz-transition: 0.6s ease-in-out left;
       -o-transition: 0.6s ease-in-out left;
          transition: 0.6s ease-in-out left;
/*   min-height: 200px;
*/}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 27px;
  color: #ffffff;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index:9999;
}

.carousel-control.right {
  right: 15px;
  left: auto;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-indicators {
  position: absolute;
  bottom: 105px;
  right: 15px;
  z-index:15;
  margin: 0;
  list-style: none;
  width:100%;
  left:0;
  text-align:center;
}

.carousel-indicators li {
  display: inline-block;
  float: none;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  margin-right:2px;
  padding:0;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
/*  background: #333333;
  background: rgba(0, 0, 0, 0.75);
*/  
	padding-bottom:120px;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(transparent), to(#000));
	background: -webkit-linear-gradient(transparent, #000);
	background: -moz-linear-gradient(transparent, #000);
	background: -ms-linear-gradient(transparent, #000);
	background: -o-linear-gradient(transparent, #000);
	background: linear-gradient(transparent, #000);
	-pie-background: linear-gradient(transparent, #000);  
}

.carousel-caption h4,
.carousel-caption p {
  line-height: 20px;
  color: #ffffff;
}

.carousel-caption h4 {
  margin: 0 0 5px;
}

.carousel-caption p {
  margin-bottom: 0;
}

@media (max-width:991px) {
	.carousel-caption { padding-bottom:0; }
	.carousel-indicators { display:none; }
}

